home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9207.ARJ / 1007054B < prev    next >
Text File  |  1992-06-03  |  221b  |  18 lines

  1. #include <iostream.h>
  2.  
  3. int main()
  4.     {
  5.     double d;
  6.     double total = 0;
  7.     int n = 0;
  8.     while (cin >> d)
  9.         {
  10.         cout << d << '\n';
  11.         total += d;
  12.         ++n;
  13.         }
  14.     cout << "average = " << total/n << '\n';
  15.     return 0;
  16.     }
  17.  
  18.